ScxV6Systems.Item Method
Returns a system name from the collection.
Parameters
- Index
The 1-based index of the system name to get from the collection.
Remarks
The Item method is used to get a system name from the collection. This method is the default method of the interface, and can be omitted if needed.
The following example written in VB.NET lists all the configured systems, along with their position in the collection.
Dim Svr As ScxV6DbClient.ScxV6Server
Svr = New ScxV6DbClient.ScxV6Server
' Enumerate the systems
Dim Systems As ScxV6DbClient.ScxV6Systems
Systems = Svr.Systems
Dim I As Integer
For I = 1 To Systems.Count
System.Console.WriteLine("{0} : {1}", I, Systems(I))
Next